home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / ansichardemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  139 b   |  9 lines

  1. program AnsiCharDemo;
  2. var
  3.   A: AnsiChar;  { There is nothing special with `AnsiChar'. }
  4.   B: Char;
  5. begin
  6.   A := 'A';
  7.   A := B
  8. end.
  9.